System.Collections.IDictionary.Keys Property

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Returns a collection of all the keys in the dictionary. The values in this collection will be enumerated in the same order as the (overridden) GetEnumerator method.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
private ICollection IDictionary.Keys{ get;}
Visual Basic (Declaration)
Private ReadOnly Property System.Collections.IDictionary.Keys As ICollection Implements IDictionary.Keys
Visual C++
private:
virtual property ICollection^ System.Collections.IDictionary.Keys {
	ICollection^ get () sealed = IDictionary::Keys::get;
}

Field Value

The collection of keys.

See Also